home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / shell / ghel / src / makefile < prev    next >
Makefile  |  1995-07-24  |  258b  |  13 lines

  1. cc = 386 hcd386p
  2. ln = 386 tlinkp
  3. cflags = -kanji -off 387 -off Floating_point
  4. lflags = -stack 40000 -tc
  5. objs = $(*.c:.c=.obj)
  6. prog = ghel.exg
  7.  
  8. .c.obj    :
  9.     $(cc) $< $(cflags)
  10.  
  11. $(prog)    :    $(objs)
  12.     $(ln) @linkfile.lnk $(objs) $(lflags) -relexe $(prog)
  13.